
.lista-circulo {
  list-style-type: circle;
}

.lista-cuadro {
  list-style-type: square;
}


.lista-romana {
  list-style-type: upper-roman;
}

.lista-letras {
  list-style-type: lower-alpha;
}


.lista-personalizada {
    list-style: none;
    padding-left: 0;
  }
  
  .lista-personalizada li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }
  
  .lista-personalizada img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    object-fit: cover; 
  }

  .afuera {
    list-style-position: outside;
  }
  
  .adentro {
    list-style-position: inside;
  }

  .sin-estilo {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

  .lista-imagen {
    list-style: none; 
    padding-left: 0;
  }
  
  .lista-imagen li {
    display: flex;
    align-items: center; 
    margin-bottom: 8px; 
  }
  
  .viñeta {
    width: 16px; 
    height: 16px; 
    margin-right: 10px; 
  }

  ol.LIS1 {
    background: #ff9999;
    padding: 20px;
  }
  
  ul.LIS2 {
    background: #3399ff;
    padding: 20px;
  }
  
  ol li.LIS4{
    background: #ffe5e5;
    color: darkred;
    padding: 5px;
    margin-left: 35px;
  }
  
  ul li.LIS3 {
    background: #cce5ff;
    color: darkblue;
    margin: 5px;
  }
  
  
  
  
  
  
  
  